* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: url('../images/cinema_seats_desktop_1920x1080.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--text-color);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background-color: rgba(26, 26, 26, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  color: #f4b942;
  font-style: italic;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.nav-link:hover {
  color: #f4b942;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f4b942;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #f4b942;
}

.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #f4b942;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.see-promo-btn {
  background-color: #f4b942;
  color: #1a1a1a;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.see-promo-btn:hover {
  background-color: #e6a73a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 185, 66, 0.3);
}

.book-now-btn {
  background-color: #f4b942;
  color: #1a1a1a;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.book-now-btn:hover {
  background-color: #e6a73a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 185, 66, 0.3);
}

.main-container {
  min-height: calc(100vh - 200px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  margin-top: var(--header-height);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: white;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.8);
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-cta {
  background-color: #f4b942;
  color: #1a1a1a;
  font-size: 1.1rem;
  padding: 15px 35px;
  border-radius: 8px;
}

.btn-cta:hover {
  background-color: #e6a73a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(244, 185, 66, 0.3);
}

.features {
  padding: 80px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(26, 20, 18, 0.8);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-icon {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 50%;
  background: rgba(244, 185, 66, 0.1);
  transition: transform 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.1);
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  color: white;
}

.stats {
  padding: 80px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 80px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer {
  background-color: #121212;
  padding: 0;
  width: 100%;
  border-top: 1px solid #333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 50px 0 30px;
  border-bottom: 1px solid #333;
}

.footer-logo {
  max-width: 350px;
}

.footer-tagline {
  margin-top: 15px;
  color: #999;
  font-size: 14px;
}

.footer-contact {
  margin-top: 20px;
}

.footer-contact p {
  color: #999;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column {
  min-width: 120px;
}

.footer-heading {
  color: #f4b942;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f4b942;
}

.footer-text {
  color: #ffffff;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #333;
  transform: translateY(-3px);
}

.copyright {
  color: #777;
  font-size: 14px;
}

@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .copyright {
    order: 2;
  }
  
  .footer-contact p {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-links {
    gap: 24px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  .footer-top {
    padding: 40px 0 30px;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #1a1a1a;
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .nav-link {
    font-size: 18px;
  }

  .header-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-secondary,
  .book-now-btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-column {
    min-width: 40%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .copyright {
    text-align: center;
  }

  .footer-contact p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 24px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    min-width: 100%;
  }

  .footer-top {
    padding: 30px 0 20px;
  }

  .footer-bottom {
    padding: 20px 0;
  }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.no-scroll {
  overflow: hidden;
}
